home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1999 Macromedia, Inc. All rights reserved.
-
- function render() {
- var btnList="", i;
- document.msg.innerHTML = arguments[0]; //Insert the question
- if (arguments.length > 1) {
- for (i=1; i<arguments.length; i++)
- btnList += "<input type='button' value='"+arguments[i]+"' onClick='setResult(\""+arguments[i]+"\")'>";
- document.btns.innerHTML = btnList;
- }
- }
-
- function setResult(result) {
- if (typeof MMNotes != 'undefined') { // Set values off of MMNotes object if it exists.
- MMNotes.Confirm_RESULT = result;
- MMNotes.Confirm_DONOTSHOW = document.cbDoNotAsk.checked;
- }
- window.close();
- }
-